home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Contours_Factory_Defa < prev    next >
Encoding:
Text File  |  2003-04-22  |  711 b   |  28 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for Contours effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Contours():
  14.     return {
  15.         'GeneralSettings': {
  16.             'AutoActionMode': 0,
  17.             'ExecutionMode': 0
  18.             },
  19.         'Intensity': 100,
  20.         'Luminance': 120,
  21.         'Blur': 35,
  22.         'Color': (0, 0, 0),
  23.         'Detail': 15
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do( Environment, 'Contours', Preset_Contours())
  28.